home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / RelViewInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-30  |  914 b   |  32 lines

  1. package symantec.itools.db.pro;
  2.  
  3. class RelViewInfo {
  4.    private int _rvID;
  5.    private int _recNum;
  6.    private int _proxyID;
  7.    private int _numRowsToRequest;
  8.  
  9.    RelViewInfo(int id, int recNum, int proxyid, int numRowsToRequest) {
  10.       this._rvID = id;
  11.       this._recNum = recNum;
  12.       this._proxyID = proxyid;
  13.       this._numRowsToRequest = numRowsToRequest;
  14.    }
  15.  
  16.    int getID() {
  17.       return this._rvID;
  18.    }
  19.  
  20.    int getRecNum() {
  21.       return this._recNum;
  22.    }
  23.  
  24.    int getProxyID() {
  25.       return this._proxyID;
  26.    }
  27.  
  28.    int getNumRowsToRequest() {
  29.       return this._numRowsToRequest;
  30.    }
  31. }
  32.